home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 8854 < prev    next >
Encoding:
Text File  |  1996-08-05  |  1.3 KB  |  34 lines

  1. Path: holly.ACNS.ColoState.EDU!not-for-mail
  2. From: corbyh@holly.ACNS.ColoState.EDU (Corby S. Hudnall)
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: Dumb ques:  Creating Libs...
  5. Date: 26 Feb 1996 17:52:15 -0700
  6. Organization: Colorado State University, Fort Collins, CO  80523
  7. Message-ID: <4gtkjv$3bc4@holly.ACNS.ColoState.EDU>
  8. References: <4ge78f$a6s@tzlink.j51.com>
  9. NNTP-Posting-Host: holly.acns.colostate.edu
  10. X-Newsreader: TIN [version 1.2 PL2]
  11.  
  12. Raffi Krikorian (rif-raf@j51.com) wrote:
  13. : I own Borland C++ 4.51 (4.52 is in the mail) and I have a couple of 
  14. : functions I would like to put into a library.  I have no idea how to do 
  15. : this and I have no idea where my manuals are.  Can anybody help?  I want 
  16. : to put them into a library that I can call no matter what target 
  17. : application I am writing.  Is this possible?  Thanks in advance.  
  18.  
  19. Useing the IDE, you can create a static library (*.lib) file and then 
  20. link it into whatever you want.  I can't remember the name of the DOS 
  21. program to do this.  Drop me a line if you want me to look it up later.
  22.  
  23. // ------------ BEGIN SIGNATURE ---------------
  24. #include <iostream.h>
  25. void main()
  26. {
  27.   cout<<"\aName:\tCorby S. Hudnall\n";
  28.   cout<<"School:\tColorado State University\n";
  29.   cout<<"EMail\tcorbyh@holly.colostate.edu\n";
  30.   cout<<"URL\thttp://holly.colostate.edu/~corbyh/\n";
  31. }
  32. // ------------- END SIGNATURE ----------------
  33.  
  34.